home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc Source Code / Messaging / MssgInit.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-22  |  884 b   |  38 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        MssgInit.cp
  3.  
  4.     Contains:    Init routines for the Messaging library
  5.  
  6.     Owned by:    Nick Pilch
  7.  
  8.     Copyright:    © 1994 - 1995 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <7>     8/25/95    JP        1272288: Added InitLibraryResources
  13.          <6>     1/22/95    NP        Removed exportation of CFM init routine.
  14.          <5>     1/12/95    jpa        Don't use obsolete Toolbox names [1211211]
  15.          <4>     9/29/94    RA        1189812: Mods for 68K build.
  16.          <3>     8/19/94    NP        1181622: Ownership fix.
  17.          <2>      8/3/94    NP        Removed warning about no prototype.
  18.          <1>     6/24/94    NP        first checked in
  19.  
  20.     To Do:
  21. */
  22.  
  23. #ifndef __CODEFRAGMENTS__
  24. #include <CodeFragments.h>
  25. #endif
  26.  
  27. #ifndef __USERSRCM__
  28. #include "UseRsrcM.h"
  29. #endif
  30.  
  31. extern "C" pascal OSErr MessagingCFMInit (CFragInitBlockPtr initBlkPtr);
  32.  
  33. pascal OSErr MessagingCFMInit (CFragInitBlockPtr initBlkPtr)
  34. {
  35.     return InitLibraryResources(initBlkPtr);
  36. }
  37.  
  38.